home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 18 / 5 / DISK1853.ZIP / SINCE.BAT < prev    next >
DOS Batch File  |  1989-08-20  |  768b  |  26 lines

  1. echo OFF
  2. if "%1" == "" goto HELP
  3. if NOT "%2" == "" goto USERFILE
  4. echo B
  5. echo Executing command: ASCOUT *.*+%1
  6. echo Displaying files created or updated on or after %1...
  7. ASCOUT *.*+%1
  8. goto END
  9. :USERFILE
  10. echo B
  11. echo Executing command: ASCOUT %1+%2
  12. echo Displaying files matching %1 created or updated on or after %2...
  13. ASCOUT %1+%2
  14. goto END
  15. :HELP
  16. echo B
  17. echo To find all files since a date, enter SINCE followed by date
  18. echo Example:  SINCE 12/31/88
  19. echo To find only certain files since a date, enter filespec followed by date
  20. echo Examples: SINCE FILENAME.EXT 12/31/89
  21. echo           SINCE *.COM 12/31/89
  22. echo B
  23. echo For further information, see DUHELP help program
  24. :END
  25. echo ON
  26.